text/tabwriter.Writer.cell (field)

12 uses

	text/tabwriter (current package)
		tabwriter.go#L102: 	cell    cell     // current incomplete cell; cell.width is up to buf[pos] excluding ignored sections
		tabwriter.go#L139: 	b.cell = cell{}
		tabwriter.go#L337: 			b.write0(b.buf[pos : pos+b.cell.size])
		tabwriter.go#L338: 			pos += b.cell.size
		tabwriter.go#L412: 	b.cell.size += len(text)
		tabwriter.go#L417: 	b.cell.width += utf8.RuneCount(b.buf[b.pos:])
		tabwriter.go#L450: 			b.cell.width -= 2 // don't count the Escape chars
		tabwriter.go#L454: 		b.cell.width++ // entity, count as one rune
		tabwriter.go#L463: 	b.cell.htab = htab
		tabwriter.go#L465: 	*line = append(*line, b.cell)
		tabwriter.go#L466: 	b.cell = cell{}
		tabwriter.go#L505: 	if b.cell.size > 0 {